Use either the // ...
or /* ... */
comment syntax, but be consistent and do not mix them within the same file.
Noncompliant code example
/* Noncompliant; both comment syntaxes are used in the same file */
// Foo
/* Bar */
Compliant solution
// Compliant; uniform comment syntax
// Foo
// Bar